home *** CD-ROM | disk | FTP | other *** search
- // ******************************************************************
- //
- // stepdlg.cpp : implementation file
- //
- // Implemented classes:
- // CStepDlg
- //
- // Author: POET Software, August 1993
- //
- // ******************************************************************
-
- #include <stdafx.h> // header to MFC
- #include <stepdlg.h> // header to this file
-
- #ifdef _DEBUG // added by ClassWizard
- #undef THIS_FILE
- static char BASED_CODE THIS_FILE[] = __FILE__;
- #endif
-
- /////////////////////////////////////////////////////////////////////////////
- // CStepDlg dialog
-
- CStepDlg::CStepDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CStepDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CStepDlg)
- m_intStepsize = 1; // set default stepsize to 1
- m_intSeekmode = 1; // set default to equal
- //}}AFX_DATA_INIT
- }
-
- void CStepDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CStepDlg)
- DDX_Text(pDX, IDC_EDIT_STEP, m_intStepsize);
- DDX_Radio(pDX, IDC_SEEK_START, m_intSeekmode);
- //}}AFX_DATA_MAP
- }
-
- BEGIN_MESSAGE_MAP(CStepDlg, CDialog)
- //{{AFX_MSG_MAP(CStepDlg)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
-
- /////////////////////////////////////////////////////////////////////////////
- // CStepDlg message handlers
-
- // no message handlers necessary; OK and Cancel button handled automaticly
-
-